home *** CD-ROM | disk | FTP | other *** search
/ All About the French Know-How at E3 2000 (USA) / All About the French Know-How at E3 2000 (USA).bin / Data / 15012 / freestyledub2.exe / scripts / frame_101 / DoAction.as
Text File  |  1999-12-16  |  995b  |  65 lines

  1. if(bPig)
  2. {
  3.    bPig = "0";
  4.    if(bZelia and bFunky)
  5.    {
  6.       tellTarget("/cGroupe")
  7.       {
  8.          gotoAndStop("clavier+saxo");
  9.       }
  10.    }
  11.    else if(!bZelia and !bFunky)
  12.    {
  13.       tellTarget("/cGroupe")
  14.       {
  15.          gotoAndStop("mega stop");
  16.       }
  17.    }
  18.    else if(bZelia)
  19.    {
  20.       tellTarget("/cGroupe")
  21.       {
  22.          gotoAndStop("saxo");
  23.       }
  24.    }
  25.    else
  26.    {
  27.       tellTarget("/cGroupe")
  28.       {
  29.          gotoAndStop("clavier");
  30.       }
  31.    }
  32. }
  33. else
  34. {
  35.    bPig = "1";
  36.    if(bZelia and bFunky)
  37.    {
  38.       tellTarget("/cGroupe")
  39.       {
  40.          gotoAndStop("totale");
  41.       }
  42.    }
  43.    else if(!bZelia and !bFunky)
  44.    {
  45.       tellTarget("/cGroupe")
  46.       {
  47.          gotoAndStop("pig1");
  48.       }
  49.    }
  50.    else if(bZelia)
  51.    {
  52.       tellTarget("/cGroupe")
  53.       {
  54.          gotoAndStop("pig1+saxo");
  55.       }
  56.    }
  57.    else
  58.    {
  59.       tellTarget("/cGroupe")
  60.       {
  61.          gotoAndStop("pig1+clavier");
  62.       }
  63.    }
  64. }
  65.